home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_100 / 161_01 / 402.c < prev    next >
C/C++ Source or Header  |  1985-08-28  |  156b  |  14 lines

  1. #include "timer1.h"
  2.  
  3. #define ASIZE 100
  4.     
  5. int a[ASIZE], i;
  6.     
  7. DO_STMT("Integer indexed looping")
  8.     for (i = 0; i < ASIZE; i++)
  9.         a[i] = 0;
  10.  
  11. OD
  12.  
  13. }
  14.